home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 78 / IOPROG_78.ISO / soft / Codice / da visual basic a c# / genericstats.cs.cs next >
Encoding:
Text File  |  2004-01-30  |  2.7 KB  |  76 lines

  1. //------------------------------------------------------------------------------
  2. // <autogenerated>
  3. //     This code was generated by a tool.
  4. //     Runtime Version: 1.1.4322.573
  5. //
  6. //     Changes to this file may cause incorrect behavior and will be lost if 
  7. //     the code is regenerated.
  8. // </autogenerated>
  9. //------------------------------------------------------------------------------
  10.  
  11. // 
  12. // Codice sorgente generato automaticamente da wsdl, versione=1.1.4322.573.
  13. // 
  14. using System.Diagnostics;
  15. using System.Xml.Serialization;
  16. using System;
  17. using System.Web.Services.Protocols;
  18. using System.ComponentModel;
  19. using System.Web.Services;
  20.  
  21.  
  22. /// <remarks/>
  23. [System.Diagnostics.DebuggerStepThroughAttribute()]
  24. [System.ComponentModel.DesignerCategoryAttribute("code")]
  25. [System.Web.Services.WebServiceBindingAttribute(Name="GenericStatsSoap", Namespace="http://www.bigatti.it/namespaces")]
  26. public class GenericStats : System.Web.Services.Protocols.SoapHttpClientProtocol {
  27.     
  28.     /// <remarks/>
  29.     public GenericStats() {
  30.         this.Url = "http://localhost/MathService/Service1.asmx";
  31.     }
  32.     
  33.     /// <remarks/>
  34.     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.bigatti.it/namespaces/compute", RequestNamespace="http://www.bigatti.it/namespaces", ResponseNamespace="http://www.bigatti.it/namespaces", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  35.     public GenericMathData compute(string valueString) {
  36.         object[] results = this.Invoke("compute", new object[] {
  37.                     valueString});
  38.         return ((GenericMathData)(results[0]));
  39.     }
  40.     
  41.     /// <remarks/>
  42.     public System.IAsyncResult Begincompute(string valueString, System.AsyncCallback callback, object asyncState) {
  43.         return this.BeginInvoke("compute", new object[] {
  44.                     valueString}, callback, asyncState);
  45.     }
  46.     
  47.     /// <remarks/>
  48.     public GenericMathData Endcompute(System.IAsyncResult asyncResult) {
  49.         object[] results = this.EndInvoke(asyncResult);
  50.         return ((GenericMathData)(results[0]));
  51.     }
  52. }
  53.  
  54. /// <remarks/>
  55. [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.bigatti.it/namespaces")]
  56. public class GenericMathData {
  57.     
  58.     /// <remarks/>
  59.     public System.Single mean;
  60.     
  61.     /// <remarks/>
  62.     public System.Single standardDeviation;
  63.     
  64.     /// <remarks/>
  65.     public System.Single coefficientOfVariation;
  66.     
  67.     /// <remarks/>
  68.     public int counter;
  69.     
  70.     /// <remarks/>
  71.     public System.Single min;
  72.     
  73.     /// <remarks/>
  74.     public System.Single max;
  75. }
  76.